home *** CD-ROM | disk | FTP | other *** search
- /*
- An extension of the java.awt.Frame class that can show an Applet
- */
-
- import java.awt.*;
- import java.applet.*;
-
- public class AppletFrame extends symantec.itools.awt.AppletFrame
- {
- public AppletFrame()
- {
- //{{INIT_CONTROLS
- //}}
-
- //{{INIT_MENUS
- //}}
-
- show();
- }
-
- public static void main(String args[])
- {
- new AppletFrame().show();
- }
-
- public boolean handleEvent(Event event)
- {
- return super.handleEvent(event);
- }
-
- //{{DECLARE_CONTROLS
- //}}
-
- //{{DECLARE_MENUS
- //}}
-
- }
-